Version 1.0 Email: waltgt1@yahoo.com Shop Prices =========== Each shop has up to 4 slots (the items it has for sale). The slots are numbered from 0 to 3 and are used as an index. I havn't figured out how to change a shop's inventory yet, but the price data begins at 0x21E64. Each price is 2 bytes and since a shop can sell up to 4 items, there are 8 bytes for each shop in the game. I havn't run through all the offsets yet, but so far: 0x21E64 - 0x21E6B = Leaf item shop 0x21E6C - 0x21E73 = Brnmayer item shop 0x21E74 - 0x21E7B = Oak item shop 0x21E7C - 0x21E83 = Amazones item shop 0x21E84 - 0x21E8B = Nadare's item shop 0x21E8C - 0x21E93 = Portoa item shop 0x21E94 - 0x21E9B = Joel item shop 0x21E9C - 0x21EA3 = Swan item shop 0x21EA4 - 0x21EAB = Goa item shop 0x21DE0 - 0x21DE7 = Leaf armor shop 0x21DE8 - 0x21DEF = Brnmayer armor shop 0x21DF8 - 0x21DFF = Amazones armor shop 0x21E08 - 0x21E0F = Portoa armor shop 0x21E18 - 0x21E1F = Swan armor shop Example: The price of the warp boots in Leaf's item shop is 60 (0x3C), and is in slot #3. So the offset of the price (in the ROM) is 0x21E64 + (3 * 2) = 0x21E6A